home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-31 | 467 b | 20 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved
-
- #ifndef __CONTROLS_H
- #define __CONTROLS_H
-
- #include "CLLayout.h"
-
- class TControl:public TLayoutLeaf {
- protected:
- virtual void TrackMouseChange( TMouseEvent*, Boolean );
- virtual void TrackMouseWithin( TMouseEvent* );
- virtual void TrackMouseDown( TMouseEvent* );
- virtual void TrackMouseUp( TMouseEvent* );
- virtual Boolean HandleMouseSelf( TMouseButtonEvent* );
- public:
- TControl( TLayoutBranch* );
- };
-
- #endif